Returns True or False to indicate if warnings are displayed in the Errors pane during playback and in run reports.
Syntax
IsIgnoringWarnings()
Return value
| Value | Description |
|---|---|
| True | Warnings are ignored. |
| False | Warning are not ignored. |
Example
If IsIgnoringWarnings = True Then
PrintLn("Ignoring warnings")
Else
PrintLn("Not ignoring warnings")
End If